1
|
|
|
/* |
2
|
|
|
* CMS Pico - Integration of Pico within your files to create websites. |
3
|
|
|
* |
4
|
|
|
* This file is licensed under the Affero General Public License version 3 or |
5
|
|
|
* later. See the COPYING file. |
6
|
|
|
* |
7
|
|
|
* @author Maxence Lange <[email protected]> |
8
|
|
|
* @copyright 2017 |
9
|
|
|
* @license GNU AGPL version 3 or any later version |
10
|
|
|
* |
11
|
|
|
* This program is free software: you can redistribute it and/or modify |
12
|
|
|
* it under the terms of the GNU Affero General Public License as |
13
|
|
|
* published by the Free Software Foundation, either version 3 of the |
14
|
|
|
* License, or (at your option) any later version. |
15
|
|
|
* |
16
|
|
|
* This program is distributed in the hope that it will be useful, |
17
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
18
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19
|
|
|
* GNU Affero General Public License for more details. |
20
|
|
|
* |
21
|
|
|
* You should have received a copy of the GNU Affero General Public License |
22
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
23
|
|
|
* |
24
|
|
|
*/ |
25
|
|
|
|
26
|
|
|
/** global: OC */ |
27
|
|
|
/** global: admin_pico_elements */ |
28
|
|
|
/** global: admin_pico_result */ |
29
|
|
|
/** global: admin_pico_define */ |
30
|
|
|
|
31
|
|
|
var admin_pico_nav = { |
32
|
|
|
|
33
|
|
|
retrieveSettings: function () { |
34
|
|
|
$.ajax({ |
35
|
|
|
method: 'GET', |
36
|
|
|
url: OC.generateUrl('/apps/cms_pico/admin/settings'), |
37
|
|
|
data: {} |
38
|
|
|
}).done(function (res) { |
39
|
|
|
admin_pico_result.displaySettings(res); |
40
|
|
|
}); |
41
|
|
|
}, |
42
|
|
|
|
43
|
|
|
addCustomTemplate: function () { |
44
|
|
|
$.ajax({ |
45
|
|
|
method: 'PUT', |
46
|
|
|
url: OC.generateUrl('/apps/cms_pico/admin/templates'), |
47
|
|
|
data: { |
48
|
|
|
template: admin_pico_elements.cms_pico_new_template.val() |
49
|
|
|
} |
50
|
|
|
}).done(function (res) { |
51
|
|
|
admin_pico_result.displaySettings(res); |
52
|
|
|
}); |
53
|
|
|
}, |
54
|
|
|
|
55
|
|
|
generateTmplCustomTemplate: function (entry) { |
56
|
|
|
var div = $('#tmpl_custom_template'); |
57
|
|
|
if (!div.length) { |
58
|
|
|
return; |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
var tmpl = div.html(); |
62
|
|
|
tmpl = tmpl.replace(/%%name%%/g, escapeHTML(entry)); |
63
|
|
|
return tmpl; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
|
67
|
|
|
}; |